home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / bbsutil / kbbs_40.zip / KTRIVIA.DOC < prev    next >
Text File  |  1994-02-19  |  4KB  |  107 lines

  1.                              KTRIVIA
  2.  
  3.                       (c)1994 by Robert Zee
  4.                       World Rights Reserved
  5.  
  6. This is a "DO EVERYTHING" Trivia Game!  Totally user defined, as
  7. many players as you want.  Play it like any DOS type game, or use
  8. it with a BBS as a DOOR Game.  Players can add NEW questions to
  9. any game.  After the OWNER of the games says "OK," the new entry
  10. becomes part of the game.
  11.  
  12.  
  13.                            INTRODUCTION
  14.  
  15. This manual is divided into LOGICAL sections.  The first section
  16. is about playing the regular game.  The second section is about
  17. playing the DOOR game version and how to set it up for most any
  18. kind of BBS.
  19.  
  20.  
  21.                             INSTALLING
  22.  
  23. If you received this game on a 3-1/2 inch or 5-1/4 inch disk, you
  24. should copy your disk or disks to a hard drive (if you have one).
  25. You should make a special direction for this game so that all the
  26. files will be in one place.  The name of your directory can be
  27. any name you like, but KTRIVIA is recommended.  Here's an example
  28. of how to copy your disk from drive A:
  29.  
  30.         1.  Put your disk in drive A:
  31.         2.  Type these commands from the DOS prompt:
  32.  
  33.                C:
  34.                md \KTRIVIA
  35.                cd \KTRIVIA
  36.                xcopy A:
  37.  
  38.         3.  If you have more than one disk, repeat the last
  39.             command for each disk.
  40.  
  41. If you received this game from a BBS or other site in compressed
  42. format, such a ZIP, then you need to uncompress it first.  The
  43. site (supplier) can give you complete details on uncompressing.
  44.  
  45.  
  46.  
  47.                      PLAYING THE REGULAR GAMES
  48.  
  49. No special equipment is needed.  Ktrivia will run on any kind of
  50. IBM/MSDOS compatible computer with any kind of a monitor.  If you
  51. have a color monitor, Ktrivia detects the color and will print in
  52. a colorful way.
  53.  
  54.                 To start the game, type:  KTRIVIA
  55.  
  56. Ktrivia comes with at least one game.  To add additional games
  57. (or quizzes) please read the section called ADDING NEW GAMES.
  58.  
  59.  
  60.  
  61.                       PLAYING THE DOOR GAMES
  62.  
  63. Ktrivia DOOR game is a "stand alone" program and does not need
  64. any fossil drivers.  If your BBS runs a fossil, you probably need
  65. to unload it, or any other modem driver, since Ktrivia has its
  66. own built in modem handler.
  67.  
  68. Ktrivia needs to know about the caller.  It does this with a
  69. small file.  Some call this a "drop" file.  Sometimes this file
  70. is known as a "door.sys" or various other things.  For now, only
  71. one type is supported: DORINFO1.DEF file.  Others will be added
  72. upon request (please furnish a sample of the file along with an
  73. explanation of what each line means).  From this file, Ktrivia
  74. leans about the modem speed and setup, who the caller is, and so
  75. on.  To run Ktrivia as a DOOR, the file needs to be in the same
  76. directory as Ktrivia.  Usually, a batch file is used to call up
  77. Ktrivia as a DOOR.  Here is an example of KTRIVIA.BAT:
  78.  
  79.                 COPY DORINFO1.DEF \KTRIVIA
  80.                 CD\KTRIVIA
  81.                 KTRIVIA DORINFO1.DEF
  82.  
  83. Some BBS software will require additional lines to change the
  84. directory back to the BBS directory and other things.  Please
  85. refer to your BBS manual if additional things are needed.  You
  86. will need to inform you software how to call this DOOR and that
  87. information is probably in your manual, too.
  88.  
  89. If you are running KBBS (KISSWARE WORKS! BBS) here's how to set
  90. it up.  Go to the \KISSBBS\DOOR directory.  Add a line to the
  91. DOOR.CFG file like this:
  92.  
  93.                 new C 30 C.bat "Cool Trivia Games"
  94.  
  95. then make a batch file called C.BAT which contains:
  96.  
  97.                 @echo off
  98.                 copy \kissbbs\dorinfo1.def \kissbbs\door\ktrivia
  99.                 cd ktrivia
  100.                 ktrivia dorinfo1.def
  101.  
  102. For KBBS only, the "new" is level of caller, "C" is the command,
  103. "30" is the maximum time limit, which is over-ridden by the
  104. callers time left, if less, and "C.BAT" is the batch file.  The
  105. batch file and the door.cfg file both should be in the directory
  106. called \KISSBBS\DOOR. 
  107.